home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2002-128.nasl < prev    next >
Text File  |  2005-01-14  |  3KB  |  103 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. # The text of this plugin is (C) Red Hat Inc.
  6.  
  7. if ( ! defined_func("bn_random") ) exit(0);
  8. if(description)
  9. {
  10.  script_id(12306);
  11.  script_version ("$Revision: 1.3 $");
  12.  
  13.  name["english"] = "RHSA-2002-128: kernel";
  14.  
  15.  script_name(english:name["english"]);
  16.  
  17.  desc["english"] = '
  18.  
  19.   This kernel update is available for Red Hat Linux Advanced Server 2.1.
  20.  
  21.   It includes a fix for an information security bug, various kernel bug
  22.   fixes, and updated device drivers.
  23.  
  24.   [2002-07-29] This release is a rebuild for adding exported symbols for
  25.   Veritas.
  26.  
  27.   This kernel fixes an information security bug. When running enterprise
  28.   kernels previous to version 2.4.9-e.8, information in the Intel SSE XMM
  29.   registers could "leak" between processes under certain circumstances.
  30.  
  31.   This update also includes fixes for the following bugs:
  32.  
  33.   - Creation of an Oracle SGA greater than 8 GB on 16 GB or greater machine
  34.   when using bigpages and shmfs
  35.   - Sendmail running out of flocks
  36.   - Unreliable rebooting with the "reboot=bios" boot option
  37.   - Potential memory corruption on systems with more than 4 GB
  38.   - An AIO write deadlock
  39.   - IOAPIC warnings on one platform
  40.   - Potentially miscompiled code in xor.h (though kernel engineering
  41.   research does not indicate that our compiler miscompiles this code)
  42.  
  43.   This kernel also has extra exported symbols removed.
  44.  
  45.   This new kernel also includes several updated device drivers. The
  46.   aic7xxx_mod driver has been updated to a new version, fixing several
  47.   bugs, the tg3 driver has also been updated to a new version to fix various
  48.   bugs, and the qla2300 driver has some small bug fixes and has been updated
  49.   to work with the QLogic 2340 HBA and PowerVault 660F arrays. Additions to
  50.   the SCSI LUNs "white list" have also been made to support more fibre
  51.   channel arrays.
  52.  
  53.   [2002-07-29] This new kernel is a rebuild for adding exported symbols for
  54.   Veritas.
  55.  
  56.  
  57.  
  58.  
  59. Solution : http://rhn.redhat.com/errata/RHSA-2002-128.html
  60. Risk factor : High';
  61.  
  62.  script_description(english:desc["english"]);
  63.  
  64.  summary["english"] = "Check for the version of the kernel packages";
  65.  script_summary(english:summary["english"]);
  66.  
  67.  script_category(ACT_GATHER_INFO);
  68.  
  69.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  70.  family["english"] = "Red Hat Local Security Checks";
  71.  script_family(english:family["english"]);
  72.  
  73.  script_dependencies("ssh_get_info.nasl");
  74.  
  75.  script_require_keys("Host/RedHat/rpm-list");
  76.  exit(0);
  77. }
  78.  
  79. include("rpm.inc");
  80. if ( rpm_check( reference:"kernel-BOOT-2.4.9-e.8", release:"RHEL2.1") )
  81. {
  82.  security_hole(0);
  83.  exit(0);
  84. }
  85. if ( rpm_check( reference:"kernel-doc-2.4.9-e.8", release:"RHEL2.1") )
  86. {
  87.  security_hole(0);
  88.  exit(0);
  89. }
  90. if ( rpm_check( reference:"kernel-headers-2.4.9-e.8", release:"RHEL2.1") )
  91. {
  92.  security_hole(0);
  93.  exit(0);
  94. }
  95. if ( rpm_check( reference:"kernel-source-2.4.9-e.8", release:"RHEL2.1") )
  96. {
  97.  security_hole(0);
  98.  exit(0);
  99. }
  100.  
  101.  
  102. set_kb_item(name:"RHSA-2002-128", value:TRUE);
  103.